Please Resolve HTML Coding Inconsistency

Category: Zone BBS Suggestions and Feedback

Post 1 by Shell Script (I just keep on posting!) on Tuesday, 05-Aug-2014 23:38:18

Hello Developers,
Please resolve the issue of HTML links not rendering correctly in board posts.

Post 2 by blbobby (Ooo you're gona like this!) on Wednesday, 06-Aug-2014 10:36:55

There's really a scarcity of information in your post.

What inconsistencies do you mean?

Bob

Post 3 by LeoGuardian (You mean there is something outside of this room with my computer in it?) on Wednesday, 06-Aug-2014 13:44:59

Agreed. I have never seen links fail, not if they were coded. Just putting in a URl is not sufficient. These boards are not Rich Text or other intelligent format fields. You have to supply your own html code, and it needs to be code literal, not the tag soup a lot of hackneys produce. Close your tags, use lower case for tag and attribute names, close your quotes for your attribute values, and so on.
With a username like Shell Script, I take it you are young and hot to trot to get into programming. A basic concept is to be able to provide a description and steps for the issue you are encountering.

Post 4 by Shell Script (I just keep on posting!) on Wednesday, 06-Aug-2014 20:54:08

Sorry. The issue I am having is that my HTML links I code show up one time out of every two hundred. And I am coding them correctly, I know that for certain. The inconsistency is that some users have gotten there links to show up, while others get blank space. Sorry for the vague detail, I wrote this very late in the night.

Post 5 by forereel (Just posting.) on Thursday, 07-Aug-2014 11:30:10

The users that put links in create them, they just don't type them.
I personally don't put links only addresses.
I feel it is better security to not click links on webpages, but use the address to get there.
I don't trust links,.
I will use one depending on who post it, but not all of them.

Post 6 by Flidais (WISEST IS SHE WHO KNOWS THAT SHE DOES NOT KNOW) on Thursday, 07-Aug-2014 13:50:46

I've never had a problem posting links on board posts...do you have a board post with an example of where the link appears blank?

Post 7 by LeoGuardian (You mean there is something outside of this room with my computer in it?) on Thursday, 07-Aug-2014 14:02:22

A couple frequent html mistakes that a lot of browsers and other web software will forgive:
- failing to place the attribute value inside double quotes, not single quotes. Shell Script, you as a programmer probably write in enough languages where single and double quotes are interchangeable so long as they are consistent, many languages do now. It's an easy mistake not to say you made it, but still. So check all your attributes not just the href.
The other thing is to create a tag with no nested text - open angle bracket a, the attributes href and title and so on, then forward slash and close angle bracket. A legal tag but would produce empty space on these boards. If you tried to nest an image instead of tet, I'm not sure what would happen.
Since the <pre> and other code tags don't work on here, you may just want to describe the structure you're using.
I'm just saying all this because so many environments are so forgiving about html - hence it's nickname tag soup, in some circles.

Post 8 by Shell Script (I just keep on posting!) on Thursday, 07-Aug-2014 18:23:09

Here, let's see if this link to Google search will show up. For this one, I did a less than, the a href part, and the link in double quotes (I don't use single quotes typically), then ! URL, then close the quote, then close the tag with less than /a greater.

Post 9 by Shell Script (I just keep on posting!) on Thursday, 07-Aug-2014 18:25:08

By golly, it works!

Post 10 by Shell Script (I just keep on posting!) on Thursday, 07-Aug-2014 18:25:55

Nevermind. That was a lucky tag for the post before the last one.